home *** CD-ROM | disk | FTP | other *** search
/ Best Tools for JAVA / Best Tools for JAVA.iso / JAVA_ALL / IDE / SUBARTIC / SUB_ARCT / INPUT / RAW_INPU.JAV < prev    next >
Encoding:
Text File  |  1996-10-04  |  1.4 KB  |  41 lines

  1.  
  2. package sub_arctic.input;
  3.  
  4. /** 
  5.  * Input protocol interface for objects which wish to receive raw events.
  6.  * This protocol is used by both the focus and positional raw dispatch 
  7.  * agents.
  8.  *
  9.  * @see sub_arctic.input.raw_focus_agent
  10.  * @see sub_arctic.input.raw_positional_agent
  11.  * @author Scott Hudson
  12.  */
  13. public interface raw_input_acceptor {
  14.  
  15.   /** 
  16.    * Dispatch raw input event to the object. 
  17.    * @param event  evt       the event being dispatched.
  18.    * @param Object user_info uninterpreted information that was provided by this
  19.    *                         object either when it became the focus, or for 
  20.    *                         positional dispatch, when the object was picked.
  21.    */
  22.   public boolean handle_raw_input(event evt, Object user_info);
  23.  
  24. }
  25. /*=========================== COPYRIGHT NOTICE ===========================
  26.  
  27. This file is part of the subArctic user interface toolkit.
  28.  
  29. Copyright (c) 1996 Scott Hudson and Ian Smith
  30. All rights reserved.
  31.  
  32. The subArctic system is freely available for most uses under the terms
  33. and conditions described in 
  34.   http://www.cc.gatech.edu/gvu/ui/sub_arctic/sub_arctic/doc/usage.html 
  35. and appearing in full in the lib/interactor.java source file.
  36.  
  37. The current release and additional information about this software can be 
  38. found starting at: http://www.cc.gatech.edu/gvu/ui/sub_arctic/
  39.  
  40. ========================================================================*/
  41.